runtime.p.runnext (field)

14 uses

	runtime (current package)
		proc.go#L4044: 	if mp.spinning && (pp.runnext != 0 || pp.runqhead != pp.runqtail) {
		proc.go#L5675: 	if pp.runnext != 0 {
		proc.go#L5676: 		globrunqputhead(pp.runnext.ptr())
		proc.go#L5677: 		pp.runnext = 0
		proc.go#L6731: 		runnext := atomic.Loaduintptr((*uintptr)(unsafe.Pointer(&pp.runnext)))
		proc.go#L6772: 		oldnext := pp.runnext
		proc.go#L6773: 		if !pp.runnext.cas(oldnext, guintptr(unsafe.Pointer(gp))) {
		proc.go#L6879: 	next := pp.runnext
		proc.go#L6883: 	if next != 0 && pp.runnext.cas(next, 0) {
		proc.go#L6903: 	oldNext := pp.runnext
		proc.go#L6904: 	if oldNext != 0 && pp.runnext.cas(oldNext, 0) {
		proc.go#L6952: 				if next := pp.runnext; next != 0 {
		proc.go#L6973: 					if !pp.runnext.cas(next, 0) {
		runtime2.go#L686: 	runnext guintptr